Revision: tla--libawk-exp--1.3.1--patch-8
Archive: lord@emf.net--libawk-exp-2005
Creator: Thomas Lord <lord@emf.net>
Date: Fri Feb 11 15:42:01 PST 2005
Standard-date: 2005-02-11 23:42:01 GMT
Modified-files: libarch/my.c libarch/pfs-signatures.c
    libfsutils/file-contents.c libfsutils/file-contents.h
New-patches: lord@emf.net--libawk-exp-2005/tla--libawk-exp--1.3.1--patch-8
Summary: elim. `trim_surrounding_ws' calls in "my.c" and "pfs-signatures.c"
Keywords: 

Both files "libarch/my.c" and "libarch/pfs-signatures.c" contained a
single call to `trim_surrounding_ws' involving the idiom:

	trim_surrounding_ws (file_contents (...));

As an intermediate clean-up, a function `file_contents_trimming' has
been added to "libfsutils/file-contents.c" and the idiom above 
replaced with:


	file_contents_trimming (...);


The implementation of `file_contents_trimming' uses hackerlab's
`str_save_trimming' and does not depend on "libawk/trim.[ch]".

